home *** CD-ROM | disk | FTP | other *** search
- package com.netscape.sasl.mechanisms;
-
- import com.netscape.sasl.SASLClientCB;
- import com.netscape.sasl.SASLClientMechanismDriver;
- import com.netscape.sasl.SASLException;
- import com.netscape.sasl.SASLSecurityLayer;
- import java.util.Properties;
-
- public class SASLExternalMechanism implements SASLClientMechanismDriver {
- private static final String LDAP_PROTOCOL = "LDAP";
- private static final String MECHANISM_NAME = "EXTERNAL";
- private String m_packageName;
- private String m_mechanismName = "EXTERNAL";
-
- public byte[] startAuthentication(String var1, String var2, String var3, Properties var4, SASLClientCB var5) throws SASLException {
- return null;
- }
-
- public String getMechanismName() {
- return this.m_mechanismName;
- }
-
- public byte[] evaluateResponse(byte[] var1) throws SASLException {
- return null;
- }
-
- public boolean isComplete() {
- return true;
- }
-
- public SASLSecurityLayer getSecurityLayer() throws SASLException {
- return null;
- }
- }
-